home *** CD-ROM | disk | FTP | other *** search
/ Experimental BBS Explossion 3 / Experimental BBS Explossion III.iso / others / nonlin25.zip / DEMO.BAT < prev    next >
DOS Batch File  |  1993-06-14  |  918b  |  38 lines

  1. @echo off
  2. cls
  3. echo .
  4. echo       ----   Nonlin Example Regressions   ----
  5. echo .
  6. echo  This demo batch file runs several nonlinear regression analyses.
  7. echo  Press any key to resume execution after a plot is displayed.
  8. echo .
  9. echo  Fit a logistic curve to the AIDS infection rate in the USA
  10. echo .
  11. pause
  12. nonlin aids
  13. cls
  14. echo  Fit an equation to the boiling point of water vs. air pressure...
  15. echo .
  16. pause
  17. nonlin boil
  18. cls
  19. echo Fit an equation to data including a sine term.
  20. pause
  21. nonlin trend
  22. cls
  23. echo Fit an equation to the temperature of a cooling object vs. time
  24. echo .
  25. pause
  26. nonlin cooling
  27. cls
  28. echo Fit an equation to the deflection of a compass needle vs. the
  29. echo distance of a magnet east of the compass.
  30. echo .
  31. pause
  32. nonlin magnet
  33. cls
  34. echo End of Nonlin demo file.
  35. echo Other demo analyses have the extension ".NLR".
  36. echo See the NONLIN.DOC file for additional information.
  37.  
  38.